From: Antoine Musso Date: Wed, 12 Jul 2006 18:38:25 +0000 (+0000) Subject: Strict Standards with PHP5 X-Git-Tag: 1.31.0-rc.0~56273 X-Git-Url: http://git.cyclocoop.org/%7D%7Cconcat%7B?a=commitdiff_plain;h=82d35df0b66c670663108062a357768387a29578;p=lhc%2Fweb%2Fwiklou.git Strict Standards with PHP5 --- diff --git a/includes/ImageGallery.php b/includes/ImageGallery.php index 0935ac30ef..ae2e4a7098 100644 --- a/includes/ImageGallery.php +++ b/includes/ImageGallery.php @@ -55,7 +55,7 @@ class ImageGallery * * @param $skin Skin object */ - function useSkin( &$skin ) { + function useSkin( $skin ) { $this->mSkin =& $skin; } @@ -135,7 +135,7 @@ class ImageGallery function toHTML() { global $wgLang, $wgIgnoreImageErrors, $wgGenerateThumbnailOnParse; - $sk =& $this->getSkin(); + $sk = $this->getSkin(); $s = ''; if( $this->mCaption )